home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / t_os / book / src / oaklib.h < prev    next >
Text File  |  1993-07-08  |  402b  |  16 lines

  1. /*
  2.     OAK Lib
  3.  
  4.     make 1990.05.04 YAMA
  5. */
  6.  
  7.  
  8. #define iskanji(c)   ((0x81<=(c) && (c)<=0x9F) || (0xE0<=(c) && (c)<=0xFC))
  9. #define iskanji2(c)  ((0x40<=(c) && (c)<=0x7E) || (0x80<=(c) && (c)<=0xFC))
  10.  
  11. int        KAN_open( void (*putstr)(),void (*putsys)(),void (*putmode)() ) ;
  12. int     KAN_close( void ) ;
  13. int     KAN_read( int sw, unsigned *enc ) ;
  14. int     KAN_touroku( int len, char *tango ) ;
  15.  
  16.